home *** CD-ROM | disk | FTP | other *** search
/ Virtual Sex With Nikki Tyler / Virtual Sex with Nikki Tyler.iso / pc / quit.dxr / 00001_--• movie scripts, setup-related.ls next >
Encoding:
Text File  |  1999-06-26  |  655 b   |  32 lines

  1. global gOldColorDepth, gOldSoundLevel
  2.  
  3. on startMovie
  4.   the trace = 0
  5.   setProp(1, 48, "puppet", 0)
  6.   setProp(1, 48, "visibility", 1)
  7.   unLoad()
  8.   unloadMember()
  9. end
  10.  
  11. on stopMovie
  12.   if not voidp(gOldColorDepth) then
  13.     set the colorDepth to gOldColorDepth
  14.   end if
  15.   if not voidp(gOldSoundLevel) then
  16.     set the soundLevel to gOldSoundLevel
  17.   end if
  18. end
  19.  
  20. on setProp startSprite, endSprite, whichProp, whichValue
  21.   repeat with x = startSprite to endSprite
  22.     do("set the " & whichProp & " of sprite x=whichValue")
  23.   end repeat
  24. end
  25.  
  26. on delayFor howLong
  27.   howLong = the timer + howLong
  28.   repeat while the timer < howLong
  29.     updateStage()
  30.   end repeat
  31. end
  32.